auto merge of #136 : Tomaka17/cargo/multiple-build-cmds, r=alexcrichton
authorbors <bors@rust-lang.org>
Mon, 7 Jul 2014 20:44:55 +0000 (20:44 +0000)
committerbors <bors@rust-lang.org>
Mon, 7 Jul 2014 20:44:55 +0000 (20:44 +0000)
Closes #69

Adds a new syntax for the `build = ` command:

```
build = [
    ["./configure"],
    ["make", "lib/libovr.a"],
    ["/bin/mkdir", "target"],
    ["/bin/cp", "lib/libovr.a", "target/"]
]
```

The current syntax `build = "make"` still works.

`build = [ "a", "b" ]` is forbidden because it is ambiguous.


Trivial merge